home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / NEWSOFT / AUGUST / ARCWEB / InetDB / ReadMe1st < prev    next >
Text File  |  1996-01-15  |  5KB  |  151 lines

  1.  
  2.  
  3. The DNS resolver software is in part based upon source that is 
  4.  
  5.    Copyright (c) 1985, 1988 Regents of the University of California.
  6.    All rights reserved.
  7.   
  8. ---------------------------------
  9.  
  10. How to install
  11. ==============
  12.  
  13. You CANNOT use this software with KA9Q. You require either Acorn TCP/IP
  14. release 2 or 4 or FreeNet or ANT !InetSuite.
  15.  
  16. If you have FreeNet, then you should already have this module and
  17. have configured it.  See !FreeNet.Docs.Resolver for more details.
  18.  
  19.  
  20. For Acorn !Internet:
  21.  
  22. 1) Extract the complete InetDB directory to your hard disc.
  23.  
  24. 2) Read the file called 'Resolver'.  If you don't understand what
  25.    this file is telling you to do, read the section at the end
  26.    of this file instead.
  27.  
  28. 3) Edit both of the files inside the 'files' subdirectory (resboot
  29.    and resconf) as per the instructions in 'Resolver'.
  30.    YOU CANNOT USE THEM WITHOUT EDITING THEM APPROPRIATELY FOR YOUR
  31.    MACHINE.  The bits you need to edit are:  All of resboot; the
  32.    domain and nameserver lines in resconf.
  33.    
  34. 4) Copy the 'files' directory over the top of !Internet.files directory
  35.    (which will merge the resboot and resconf with your !Internet files)
  36.  
  37. 5) That's it :-)
  38.  
  39.  
  40. For ANT !InetSuite:
  41.  
  42. 1,2) As for Acorn
  43.  
  44. 3) Edit ONLY resconf, and delete resboot.
  45.  
  46. 4) Copy the files directory over the top of !InetSuite.Internet.Files
  47.    directory will will merge the resconf with your InetSuite files/
  48.  
  49. 5) As for Acorn :-)
  50.    
  51.  
  52. ----Alternate instructions from those given in 'Resolver'----
  53.  
  54.  
  55. In the following instructions, lines beginning >> are my comments:
  56. You cannot put these lines in resboot or resconf.
  57.  
  58. The following files are configured for my Risc PC, delenn, which is
  59. in the ecs.soton.ac.uk domain, and has IP address 152.78.67.42
  60. So the full machine name is delenn.ecs.soton.ac.uk
  61.  
  62. !Freeuser.files.resboot (or !Internet.files.resboot for Acorn TCP/IP)
  63.  
  64. $ORIGIN ecs.soton.ac.uk.
  65. >> this line tells the resolver in which domain it is running.
  66. >> Demon users should set it to demon.co.uk.
  67. >>
  68. >> >>>>>>> note the trailing dot at the end of the domain  <<<<<<<
  69. >>
  70. delenn        IN A 152.78.67.42
  71. >>
  72. >> format is: YourHostName IN A YourIpAddress
  73. >> this instructs the resolver to add a permanent entry to the
  74. >> lookup tables for your own host IN A == INternet Address
  75. >>
  76. 42.67.78.152.in-addr.arpa.  IN PTR  delenn
  77. >>
  78. >> format is YourReversedIpAddress.in-addr.arpa. IN PTR YourHostName
  79. >> this is used for looking up the name from the IP address
  80. >> Note that the IP address is specified ***backwards*** here
  81.  
  82.  
  83. !freeuser.files.resconf (or !Internet.files.resconf)
  84.  
  85. search ecs.soton.ac.uk
  86. >>
  87. >> should give the same domain name as the $ORIGIN line in resboot
  88. >> You may use the 'domain' keyword instead.  Use search if unsure.
  89. >>
  90. cachesize    16k
  91. >>
  92. >> the size of the cache.  16K is ok.  Given that DNS cache entries
  93. >> timeout after a while anyway, you don't need to increase this
  94. >> (unless you do an awful lot of resolving)
  95. >>
  96. cacheload    resboot rescache
  97. >>
  98. >> leave this line alone.  it tells the resolver to load resboot and
  99. >> then rescache when it first starts (or when you RMReinit InetDB)
  100. >>
  101. cachesave       rescache
  102. >>
  103. >> leave this line alone.  it tells the resolver where to store a
  104. >> a copy of the cache on disc when it exits
  105. >>
  106. retry           1
  107. >>
  108. >> number of retries it will make when it fails to talk to a DNS
  109. >> server.  SLIP users may wish to increase this to 3
  110. >>
  111. timeout         1 1
  112. >>
  113. >> timeout periods for retrying and moving through the list of
  114. >> nameservers.  SLIP users may wish to increase this to 3 12
  115. >> since lookups cannot be satisfied within the timeout of 1
  116. >> second so easily with a 'slow' link.
  117. >>
  118. lookup          file bind
  119. >>
  120. >> when a query is made, this tells it to look in
  121. >> inetdbase:hosts first, and then use the DNS protocols (bind).
  122. >> This means that if you put frequently used hosts in your
  123. >> hosts file, they will be resolved faster, and always resolve
  124. >> (The problem is that if the host IP is changed, you will be
  125. >> talking to the wrong machine, though).
  126. >>
  127. options         ndots 1
  128. >>
  129. >> leave this alone.  this tells the resolver that if it is asked
  130. >> to lookup any host name with more than 1 dot in it, then it
  131. >> should try to look it up as a complete name first, and only
  132. >> if that fails, should it append the 'domain' or 'search' entry
  133. >> to it.
  134. >>
  135. nameserver      152.78.66.136
  136. nameserver      152.78.64.201
  137. nameserver      152.78.128.128
  138. >>
  139. >> these three lines specify the DNS server IP addresses.
  140. >> Format is:  nameserver NameServerIPAddress       They must
  141. >> be specified as addresses.  The three I use are suitable only for
  142. >> my domain (ecs.soton.ac.uk).  Demon users should set these to
  143. >> 158.152.1.58  158.152.1.43  158.152.1.72   respectively.
  144. >> Your service provider/network manager will be able to tell you 
  145. >> these numbers.
  146.  
  147.  
  148. ----
  149. Stewart Brodie
  150. 15th January 1996
  151.